Arch RemoveShape/sv

THIS COMMAND IS PART OF THE INTEGRATED BIM WORKBENCH IN V1.0
This page has been updated for that version.

Arch RemoveShape

Menyplacering
Arch → Utilities → Remove Shape
Arbetsbänkar
Arch
Standard genväg
Ingen
Introducerad i version
-
Se även
Arch SplitMesh, MeshToShape

Beskrivning

The Arch RemoveShape tool attempts at removing the inner cubic shape of an Arch Wall or Arch Structure, and adjusting its properties, making it totally parametric. This tool will only work if the underlying shape is cubic (exactly 6 faces, all corners have only right angles).

Bruk

  1. Select an Arch Wall or Arch Structure.
  2. Select the Utils → Remove Shape from Arch option from the menu.

Scripting

Skript

This tool can be used in macros and from the Python console by using the following function:

removeShape(objs, mark=True)
import FreeCAD, Draft, Arch

Box = FreeCAD.ActiveDocument.addObject("Part::Box", "Box")
Box.Length = 1000
Box.Width = 2000
Box.Height = 1000
FreeCAD.ActiveDocument.recompute()

Structure = Arch.makeStructure(Box)
FreeCAD.ActiveDocument.recompute()

Arch.removeShape(Structure)
FreeCAD.ActiveDocument.recompute()